home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Delphi Programmer's Power Pack
/
Delphi Volume 1.iso
/
e_to_l
/
fbuilder
/
delphi
/
demos
/
demabout.pas
< prev
next >
Wrap
Pascal/Delphi Source File
|
1996-09-15
|
654b
|
41 lines
unit Demabout;
interface
uses WinTypes, WinProcs, Classes, Graphics, Forms, Controls, StdCtrls,
Buttons, ExtCtrls;
type
TAboutBox = class(TForm)
Panel1: TPanel;
OKButton: TBitBtn;
ProgramIcon: TImage;
ProductName: TLabel;
Version: TLabel;
Copyright: TLabel;
Comments: TLabel;
Label1: TLabel;
private
{ Private declarations }
public
{ Public declarations }
end;
var
AboutBox: TAboutBox;
Procedure DisplayAbout;
implementation
{$R *.DFM}
Procedure DisplayAbout;
begin
AboutBox := TAboutBox.Create(NIL);
AboutBox.ShowModal;
AboutBox.Free;
end;
end.